Introduction to HTML
HTML (HyperText Markup Language) is the standard language for creating web pages. It is a markup language that defines the structure of web content using tags.
Basic HTML Example
Here is a basic HTML code example:
<!DOCTYPE html>
<html>
<head>
<title>Web4U</title>
</head>
<body>
<h1>Welcome to Web4U</h1>
<p>This is a paragraph of text in HTML.</p>
</body>
</html>
Code Explanation:
The code above describes the basic structure of an HTML page:
- <html>: Defines the beginning of the HTML document.
- <head>: Contains metadata like the page title.
- <title>: Sets the title displayed in the browser tab.
- <body>: Contains the visible content of the page.
- <h1>: The main heading of the page.
- <p>: A paragraph of text.
Browser Output
When viewed in a browser, the code will render as follows:

Useful Links
For more details about HTML tags, visit the W3C Website.
You may also find the HTML Tutorial on W3Schools helpful.